

public interface ListIterator extends Iterator {

    boolean hasPrevious( );
    
    Object previous( );
     
    void remove( );
}
